Stored Procedures [dbo].[BAERosterManagementGetRemovalReasonCodes]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
SQL Script
/*
  Gets the removal reason codes.  Should not be changed.
*/

CREATE PROC [dbo].[BAERosterManagementGetRemovalReasonCodes]
AS
SELECT CODE, DESCRIPTION FROM Gen_Tables WHERE TABLE_NAME = 'ROSTER_REMOVAL_REASON_CODE';

GO
Uses